home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAddIn
- BackColor = &H00000000&
- BorderStyle = 3 'Fixed Dialog
- Caption = "KeyGen by CyberBlade..."
- ClientHeight = 4095
- ClientLeft = 2175
- ClientTop = 1935
- ClientWidth = 4290
- Icon = "frmAddIn.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4095
- ScaleWidth = 4290
- StartUpPosition = 2 'CenterScreen
- Begin VB.Frame Frame4
- BackColor = &H80000007&
- Caption = "Company:"
- ForeColor = &H000000FF&
- Height = 615
- Left = 240
- TabIndex = 8
- Top = 1920
- Width = 3735
- Begin VB.TextBox txtCompany
- ForeColor = &H00000000&
- Height = 285
- Left = 240
- TabIndex = 9
- Text = "ReFleXZ"
- Top = 240
- Width = 3255
- End
- End
- Begin VB.Frame Frame3
- BackColor = &H80000007&
- Caption = "First Name:"
- ForeColor = &H000000FF&
- Height = 615
- Left = 240
- TabIndex = 6
- Top = 1200
- Width = 3735
- Begin VB.TextBox txtFirst
- ForeColor = &H00000000&
- Height = 285
- Left = 240
- TabIndex = 7
- Text = "Cyber"
- Top = 240
- Width = 3255
- End
- End
- Begin VB.CommandButton Command1
- Caption = "Quit"
- Height = 495
- Left = 2280
- TabIndex = 5
- Top = 3480
- Width = 1815
- End
- Begin VB.CommandButton cmdGenerate
- Caption = "Generate"
- Height = 495
- Left = 240
- TabIndex = 4
- Top = 3480
- Width = 1815
- End
- Begin VB.Frame Frame2
- BackColor = &H80000007&
- Caption = "Serial:"
- ForeColor = &H000000FF&
- Height = 615
- Left = 240
- TabIndex = 2
- Top = 2640
- Width = 3735
- Begin VB.TextBox txtKey
- BackColor = &H00E0E0E0&
- ForeColor = &H00800000&
- Height = 285
- Left = 240
- Locked = -1 'True
- TabIndex = 3
- Text = "< Your serial will be displayed here >"
- Top = 240
- Width = 3255
- End
- End
- Begin VB.Frame Frame1
- BackColor = &H80000007&
- Caption = "Name:"
- ForeColor = &H000000FF&
- Height = 615
- Left = 240
- TabIndex = 0
- Top = 480
- Width = 3735
- Begin VB.TextBox txtName
- ForeColor = &H00000000&
- Height = 285
- Left = 240
- TabIndex = 1
- Text = "Blade"
- Top = 240
- Width = 3255
- End
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "This is a KeyGen for ACiD BuRN's CrackMe v1.0"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 360
- TabIndex = 10
- Top = 120
- Width = 3855
- End
- Begin VB.Line Line3
- BorderColor = &H00FFFFFF&
- X1 = 0
- X2 = 4560
- Y1 = 3360
- Y2 = 3360
- End
- Begin VB.Line Line2
- BorderColor = &H00FFFFFF&
- X1 = 4560
- X2 = 4575
- Y1 = 2520
- Y2 = 2535
- End
- Begin VB.Line Line1
- BorderColor = &H00E0E0E0&
- BorderWidth = 2
- X1 = 4560
- X2 = 4575
- Y1 = 2520
- Y2 = 2535
- End
- Attribute VB_Name = "frmAddIn"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdGenerate_Click()
- Dim KeyName As Long
- Dim KeyFirst As Long
- Dim KeyCompany As Long
- If Len(txtName.Text) < 1 Or Len(txtFirst.Text) < 1 Or Len(txtCompany.Text) < 1 Then
- MsgBox "You have to enter at least 1 char !", vbInformation + vbOKOnly, "Error!"
- Exit Sub
- End If
- KeyName = "444" * Asc(Left(txtName.Text, 1))
- KeyName = KeyName * Day(Date)
- KeyName = Int(KeyName / Month(Date))
- KeyFirst = "888" * Asc(Left(txtFirst.Text, 1))
- KeyFirst = KeyFirst * Day(Date)
- KeyFirst = Int(KeyFirst / Month(Date))
- KeyCompany = "111" * Asc(Left(txtCompany.Text, 1))
- KeyCompany = KeyCompany * Day(Date)
- KeyCompany = Int(KeyCompany / Month(Date))
- txtKey.Text = KeyName & "-" & KeyFirst & "-" & KeyCompany
- End Sub
- Private Sub Command1_Click()
- Unload Me
- End Sub
-